home *** CD-ROM | disk | FTP | other *** search
/ SVM Mac CD-ROM 59 / SVM Mac CD-ROM - No 59.iso / Wanadoo / Media / Present.dcr / Internal_527_MotRose.ls < prev    next >
Encoding:
Text File  |  2000-01-18  |  607 b   |  31 lines

  1. property pMemb0, pMemb1, pMemb2
  2.  
  3. on mouseEnter me
  4.   set pMemb0 to "retourRose0"
  5.   set pMemb1 to "retourRose1"
  6.   set pMemb2 to "retourRose2"
  7.   set the member of sprite the currentSpriteNum to pMemb1
  8.   cursor(280)
  9. end
  10.  
  11. on mouseDown me
  12.   if pMemb2 <> VOID then
  13.     set the member of sprite the currentSpriteNum to pMemb2
  14.     cursor(290)
  15.   end if
  16. end
  17.  
  18. on mouseUp me
  19.   if pMemb1 <> VOID then
  20.     set the member of sprite the currentSpriteNum to pMemb1
  21.     cursor(280)
  22.   end if
  23. end
  24.  
  25. on mouseLeave me
  26.   if pMemb0 <> VOID then
  27.     set the member of sprite the currentSpriteNum to pMemb0
  28.     cursor(-1)
  29.   end if
  30. end
  31.